2023-01-09

Developing Data Product Week3 Assignment

Create a web page presentation using R Markdown that features a plot created with Plotly. I will draw two plots using “airquality” dataset with plotly. Next slides have following bullet points.

  • Load Plotly Package
  • Scatter Plot
  • Box Plot

Load Plotly Package

I will load the “Plotly” package with the following command.

library(plotly)

Scatter Plot

“Airquality” dataset is used for the plot. X-axis is Wind. y-axis is Ozone. Month is categorical variable to show how Wind and Ozone are changing from May to September.

Box Plot

Box plot of Ozone per each month (from May to September).

Thank you